h1{
  padding-bottom: 35px;
  padding-top: 15px;
}

:root {
  --header-bg: linear-gradient(90deg, #6a7519, rgb(0, 0, 0), #802525);
  --section-bg: #ffffff;
  --text-color: #222;
  --border-color: #d1d5db;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f6f8;
  color: var(--text-color);
}

header {
  background: var(--header-bg);
  color: #ffffff;
  padding: 25px;
  text-align: center;
  border-radius: 0 0 25px 25px;
}

header h1 {
  margin: 0;
  font-size: 35px;
}

header p {
  margin: 6px 0 15px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  padding: auto;
  text-decoration: underline;
}

nav a:hover {
   box-shadow: 0 2px 5px rgb(255, 255, 255);
   transform: rotateX(3deg);
   transition-duration: 0.5s;
   color: yellow;
   text-decoration: wavy;
}

.container {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
}

section {
  background: var(--section-bg);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 25px;
}

section h2 {
  margin-top: 0;
  color: #4f46e5;
}

section ul {
  padding-left: 20px;
}

footer {
  text-align: center;
  padding: 15px;
  background: #0f172a;
  color: #fff;
  margin-top: 40px;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 24px;
  }
}

.Privacy {
  color: white;
  text-decoration: none;
  font-size: 15px;
}
.Privacy:hover {
  text-decoration: underline;
  color: yellow;
  transition-duration: 0.5s;
}

.contactLink {
  color: #4f46e5;
  text-decoration: underline;
}
.contactLink:hover {
  color: red;
  text-decoration: none;
  transition-duration: 0.5s;
}

#footer {
  font-size: 15px;
}